From e22b2836454c0cfad1a634030658ae435bd6cc34 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Mon, 24 Dec 2007 05:25:42 +0000 Subject: [PATCH] (make_process): Initialize pty_flag to Qnil instead of 0 as it is not a bit field on Emacs 22 yet. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index adf8af9670d..eb0dae04e96 100644 --- a/src/process.c +++ b/src/process.c @@ -626,7 +626,7 @@ make_process (name) XSETFASTINT (p->tick, 0); XSETFASTINT (p->update_tick, 0); p->pid = 0; - p->pty_flag = 0; + p->pty_flag = Qnil; p->raw_status_new = 0; p->status = Qrun; p->mark = Fmake_marker (); -- 2.30.2